home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef WebBrwsUH
- #define WebBrwsUH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\ComCtrls.hpp>
- #include <vcl\ExtCtrls.hpp>
- #include <vcl\NMHTML.hpp>
- #include <vcl\OleCtrls.hpp>
- //---------------------------------------------------------------------------
- class TWebMain : public TForm
- {
- __published: // IDE-managed Components
- TPanel *Panel1;
- TComboBox *URLComboBox;
- TStatusBar *StatusBar;
- THTML *HTML;
- TButton *GoBtn;
- TButton *StopBtn;
- TButton *ReloadBtn;
- TButton *SourceBtn;
- void __fastcall URLComboBoxClick(TObject *Sender);
- void __fastcall URLComboBoxKeyPress(TObject *Sender, char &Key);
- void __fastcall HTMLUpdateRetrieval(TObject *Sender);
- void __fastcall HTMLEndRetrieval(TObject *Sender);
- void __fastcall GoBtnClick(TObject *Sender);
- void __fastcall StopBtnClick(TObject *Sender);
- void __fastcall ReloadBtnClick(TObject *Sender);
- void __fastcall SourceBtnClick(TObject *Sender);
- void __fastcall HTMLDoRequestDoc(TObject *Sender, const WideString URL,
- const HTMLElement *Element, const DocInput *DocInput,
- WordBool &EnableDefault);
- void __fastcall HTMLBeginRetrieval(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TWebMain(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TWebMain *WebMain;
- //---------------------------------------------------------------------------
- #endif
-